Package pl. wendigo. chrome. api. applicationcache
Contains DevTools Protocol ApplicationCache domain implementation accessible via ApplicationCacheDomain class.
Types
ApplicationCache
Link copied to clipboard
data class ApplicationCache(manifestURL: String, size: Double, creationTime: Double, updateTime: Double, resources: List<ApplicationCacheResource>)
Content copied to clipboard
ApplicationCacheDomain
Link copied to clipboard
ApplicationCacheResource
Link copied to clipboard
data class ApplicationCacheResource(url: String, size: Int, type: String)
Content copied to clipboard
ApplicationCacheStatusUpdatedEvent
Link copied to clipboard
data class ApplicationCacheStatusUpdatedEvent(frameId: FrameId, manifestURL: String, status: Int) : Event
Content copied to clipboard
FrameWithManifest
Link copied to clipboard
data class FrameWithManifest(frameId: FrameId, manifestURL: String, status: Int)
Content copied to clipboard
GetApplicationCacheForFrameRequest
Link copied to clipboard
Represents request frame that can be used with ApplicationCache#getApplicationCacheForFrame operation call.
GetApplicationCacheForFrameResponse
Link copied to clipboard
data class GetApplicationCacheForFrameResponse(applicationCache: ApplicationCache)
Content copied to clipboard
Represents response frame that is returned from ApplicationCache#getApplicationCacheForFrame operation call.
GetFramesWithManifestsResponse
Link copied to clipboard
data class GetFramesWithManifestsResponse(frameIds: List<FrameWithManifest>)
Content copied to clipboard
Represents response frame that is returned from ApplicationCache#getFramesWithManifests operation call.
GetManifestForFrameRequest
Link copied to clipboard
GetManifestForFrameResponse
Link copied to clipboard
Represents response frame that is returned from ApplicationCache#getManifestForFrame operation call.
NetworkStateUpdatedEvent
Link copied to clipboard